From f754f8a0b02aedd1ad3c875d960b70f88aaa1ce8 Mon Sep 17 00:00:00 2001 From: oliskoli Date: Sat, 25 Aug 2007 20:01:30 +0000 Subject: [PATCH] lmx: Tweak format capabilities. --- gpsbabel/lmx.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gpsbabel/lmx.c b/gpsbabel/lmx.c index b6ed6081f..42364b31d 100644 --- a/gpsbabel/lmx.c +++ b/gpsbabel/lmx.c @@ -94,7 +94,7 @@ lmx_print(const waypoint *wpt) gbfprintf(ofd, " \n"); if (wpt->url_link_text) lmx_write_xml(5,"lm:name", wpt->url_link_text); - gbfprintf(ofd, " \%s\n", wpt->url); + gbfprintf(ofd, " %s\n", wpt->url); gbfprintf(ofd, " \n"); } @@ -229,7 +229,11 @@ lmx_lm_mlink_e(const char *args, const char **unused) ff_vecs_t lmx_vecs = { ff_type_file, - { ff_cap_none, ff_cap_read | ff_cap_write, ff_cap_none}, + { + ff_cap_read | ff_cap_write, /* waypoints */ + ff_cap_none, /* tracks */ + ff_cap_none /* routes */ + }, lmx_rd_init, lmx_wr_init, lmx_rd_deinit, -- 2.30.2